    /* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f7fc;
  color: #034295; /* Navy Blue */
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* Header Section */
.hero-sections {
  display: flex;
  flex-direction: column;
  background-color: #034295;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.hero-sections h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.hero-sections p {
  font-size: 1rem;
  max-width: 750px;
  margin: 10px auto;
}

/* Services Section */
.services {
  text-align: center;
  padding: 60px 20px;
}

.services h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #034295;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service {
  background-color: white;
  border: 2px solid #034295;
  border-radius: 8px;
  padding: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.service:hover {
  background-color: #034295;
  color: white;
  transform: translateY(-8px);
}

/* Why Choose Section */
.why-choose {
  background-color: #eaf0f8;
  text-align: center;
  padding: 60px 20px;
}

.why-choose h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.why-choose li {
  margin: 10px 0;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.why-choose li:hover {
  transform: translateX(12px);
  color: #003366;
}

/* Footer Section */
.contact {
  background-color: #034295;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.contact h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 15px;
  font-size: 1rem;
}

.contact-info a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: white;
}

.tagline {
  margin-top: 20px;
  font-weight: 500;
}

/* Scroll Hover Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section, footer {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

section:nth-of-type(1) { animation-delay: 0.3s; }
section:nth-of-type(2) { animation-delay: 0.6s; }
footer { animation-delay: 0.9s; }

